home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / sfm_xss.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  76 lines

  1.  
  2. #
  3. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  4. #
  5. # See the Nessus Scripts License for details
  6. #
  7.  
  8. if(description)
  9. {
  10.  script_id(11362);
  11.  script_bugtraq_id(7035);
  12.  script_version ("$Revision: 1.4 $");
  13.  
  14.  name["english"] = "Simple File Manager Filename Script Injection";
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. The remote Simple File Manager CGI (fm.php) improperly validates 
  19. the names of the directories entered and created by the user.
  20.  
  21. As a result, a user could generate a cross-site scripting attack
  22. on this host.
  23.  
  24. Solution : Upgrade to SFM 0.21 or newer
  25. Risk factor : Medium";
  26.  
  27.  
  28.  
  29.  
  30.  script_description(english:desc["english"]);
  31.  
  32.  summary["english"] = "Checks for the version of fm.php";
  33.  
  34.  script_summary(english:summary["english"]);
  35.  
  36.  script_category(ACT_GATHER_INFO);
  37.  
  38.  
  39.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison",
  40.         francais:"Ce script est Copyright (C) 2003 Renaud Deraison");
  41.  family["english"] = "CGI abuses";
  42.  family["francais"] = "Abus de CGI";
  43.  script_family(english:family["english"], francais:family["francais"]);
  44.  script_dependencie("find_service.nes", "http_version.nasl", "cross_site_scripting.nasl");
  45.  script_require_ports("Services/www", 80);
  46.  exit(0);
  47. }
  48.  
  49.  
  50. include("http_func.inc");
  51. include("http_keepalive.inc");
  52.  
  53. port = get_http_port(default:80);
  54.  
  55. if(!get_port_state(port))exit(0);
  56. if(get_kb_item(string("www/", port, "/generic_xss"))) exit(0);
  57. if(!can_host_php(port:port))exit(0);
  58.  
  59.  
  60. foreach dir (make_list(cgi_dirs(), "/sfm"))
  61. {
  62.  req = http_get(item:string(dir, "/fm.php"), port:port);
  63.  res = http_keepalive_send_recv(port:port, data:req);
  64.  if(res == NULL) exit(0);
  65.  
  66.  str = egrep(pattern:"simple file manager", string:res, icase:TRUE);
  67.  if(str)
  68.  {
  69.   if(ereg(string:str, pattern:".*class=tiny> \.0(0[0-9]|1[0-9]|20)[^0-9]"))
  70.    {
  71.     security_warning(port);
  72.     exit(0);
  73.    }
  74.  }
  75. }
  76.